encoding/json.decodeState.data (field)

14 uses

	encoding/json (current package)
		decode.go#L212: 	data                  []byte
		decode.go#L233: 	d.data = data
		decode.go#L266: 	s, data, i := &d.scan, d.data, d.off
		decode.go#L281: 	if d.off < len(d.data) {
		decode.go#L282: 		d.opcode = d.scan.step(&d.scan, d.data[d.off])
		decode.go#L286: 		d.off = len(d.data) + 1 // mark processed EOF with len+1
		decode.go#L293: 	s, data, i := &d.scan, d.data, d.off
		decode.go#L317: 	data, i := d.data, d.off
		decode.go#L388: 			if err := d.literalStore(d.data[start:d.readIndex()], v, false); err != nil {
		decode.go#L507: 		return u.UnmarshalJSON(d.data[start:d.off])
		decode.go#L604: 		return u.UnmarshalJSON(d.data[start:d.off])
		decode.go#L674: 		item := d.data[start:d.readIndex()]
		decode.go#L1080: 		item := d.data[start:d.readIndex()]
		decode.go#L1120: 	item := d.data[start:d.readIndex()]